From: Jim Blandy Date: Thu, 20 May 1993 02:15:28 +0000 (+0000) Subject: Get the types right, baby. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96142 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=3e4439ab30c17e1f3dc1d6f7584e4d50c51465e2;p=emacs.git Get the types right, baby. --- diff --git a/src/xfaces.c b/src/xfaces.c index 48068b014f8..285ac3f6bf1 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -558,8 +558,8 @@ static int same_size_fonts (font1, font2) XFontStruct *font1, *font2; { - XCharStruct *bounds1 = font1->min_bounds; - XCharStruct *bounds2 = font2->min_bounds; + XCharStruct *bounds1 = &font1->min_bounds; + XCharStruct *bounds2 = &font2->min_bounds; return (bounds1->width == bounds2->width && bounds1->ascent == bounds2->ascent